control structures - определение. Что такое control structures
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое control structures - определение

ORDER IN WHICH INDIVIDUAL STATEMENTS, INSTRUCTIONS OR FUNCTION CALLS OF AN IMPERATIVE PROGRAM ARE EXECUTED OR EVALUATED
Program loop; Control structure; Program flow; Control structures; Exitwhen; Continue (Java); Loop index; Flow of control; Counter controlled loops; Count controlled loop; Loop (computing); Loop (programming); Until loop; Program loops; Control construct; Break statement; Break statements; Break (Unix); Continue (keyword); Control statement; Flow control construct; Nested loop; Continue statement; Control variable (programming); Control flow architecture; Control-flow architecture; Control-flow; Break;; Control flow statement; Control-flow statement; Controlflow; Control flag; Program flow of control; Program control flow; Minimal structured control flow
  • A [[state diagram]] of a peptide ion mass mapping search process.
Найдено результатов: 2922
control structure         
<programming> One of the instructions, statements or groups of statements in a programming language which determines the sequence of execution of other instructions or statements (the control flow). In assembly language this typically consists of jumps and conditional jumps along with procedure call and return though some architectures include other constructs such as an instruction which skips the following instruction depending on some condition (PDP?), various kinds of loop instructions (later Motorola 680x0) or conditional execution of all instructions (Advanced RISC Machine). Basic control structures (whatever their names in particular languages) include "if CONDITION then EXPRESSION else EXPRESSION", the switch statement, "while CONDITION do EXPRESSION", "gosub", the suspect "goto" and the much-feared "come from". Other constructs handle errors and exceptions such as traps and interrupts. (1997-09-14)
Perl control structures         
NONE
Control structures in Perl
The basic control structures of Perl are similar to those used in C and Java, but they have been extended in several ways.
Control variable (programming)         
In computer programming, a control variable is a program variable that is used to regulate the flow of control of the program.
control flow         
<programming> (Or "flow of control") The sequence of execution of instructions in a program. This is determined at run time by the input data and by the control structures (e.g. "if" statements) used in the program. Not to be confused with "flow control". (1997-09-14)
Control flow         
In computer science, control flow (or flow of control) is the order in which individual statements, instructions or function calls of an imperative program are executed or evaluated. The emphasis on explicit control flow distinguishes an imperative programming language from a declarative programming language.
break statement         
<programming> A statement in the C programming language that transfers control out of the innermost enclosing switch, while, do, or for statement. The statement also exists in languages derived from C, such as C++ and Java. (2004-03-24)
flow of control         
Syntactic Structures         
  • A tree diagram of the sentence "Colorless green ideas sleep furiously"
  • The grammar model discussed in Noam Chomsky's ''Syntactic Structures'' (1957)
  • Noam Chomsky, the author of ''Syntactic Structures'' (1977 photo)
BOOK BY NOAM CHOMSKY
Syntactic structures
Syntactic Structures is an influential work in linguistics by American linguist Noam Chomsky, originally published in 1957. It is an elaboration of his teacher Zellig Harris's model of transformational generative grammar.
Tobacco Control (journal)         
SCIENTIFIC JOURNAL
Tob. Control; Tob Control
Tobacco Control is an international peer-reviewed journal covering the nature and consequences of tobacco use worldwide; tobacco's effects on population health, the economy, the environment, and society; efforts to prevent and control the global tobacco epidemic through population-level education and policy changes; the ethical dimensions of tobacco control policies; and the activities of the tobacco industry and its allies.
Nano-Structures & Nano-Objects         
JOURNAL
Nano-structures & Nano-objects; Nano-Struct Nano-Objects; Nano-Struct. Nano-Objects; Nano-Structures and Nano-Objects; Nano-structures and Nano-objects
Nano-Structures & Nano-Objects is an interdisciplinary peer-reviewed scientific journal devoted to all aspects of the synthesis and properties of the nanotechnology. The journal focuses on novel architecture at the nanolevel with an emphasis on new synthesis and characterization methods.

Википедия

Control flow

In computer science, control flow (or flow of control) is the order in which individual statements, instructions or function calls of an imperative program are executed or evaluated. The emphasis on explicit control flow distinguishes an imperative programming language from a declarative programming language.

Within an imperative programming language, a control flow statement is a statement that results in a choice being made as to which of two or more paths to follow. For non-strict functional languages, functions and language constructs exist to achieve the same result, but they are usually not termed control flow statements.

A set of statements is in turn generally structured as a block, which in addition to grouping, also defines a lexical scope.

Interrupts and signals are low-level mechanisms that can alter the flow of control in a way similar to a subroutine, but usually occur as a response to some external stimulus or event (that can occur asynchronously), rather than execution of an in-line control flow statement.

At the level of machine language or assembly language, control flow instructions usually work by altering the program counter. For some central processing units (CPUs), the only control flow instructions available are conditional or unconditional branch instructions, also termed jumps.